<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to create a label in Flexsim using By Percentage in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576313#M75451</link>
    <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;You need to keep the header intact, otherwise "token" and other variables are not defined. Only copy the 'functional' part of the code.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1728455263374.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1525510i5B1D041867830757/image-size/large?v=v2&amp;amp;px=999" role="button" title="1728455263374.png" alt="1728455263374.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/87152-model-rejection-rate-1.fsm" target="_blank"&gt;model-rejection-rate_1.fsm&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 09 Oct 2024 06:28:12 GMT</pubDate>
    <dc:creator>moehlmann_fe</dc:creator>
    <dc:date>2024-10-09T06:28:12Z</dc:date>
    <item>
      <title>How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576303#M75441</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 24.2.1 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;How to create a label in Flexsim using By Percentage but the total number of one label of two is not more than 100pcs. Thank you in advance for your help.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 07 Oct 2024 10:24:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576303#M75441</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-07T10:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576304#M75442</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;You'll have to write some custom code for this. I would generate one value as normal, then generate another value until the sum of both doesn't exceed 100. One value is assigned to the current item, the other one is stored in a label on the source, so it can be assigned to the next item. If no stored value exists, a new value pair is generated.&lt;/P&gt;&lt;P&gt;In the example model I use an empirical distribution to generate the random values, so the code is less cluttered and hopefully easier to understand.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/87123-custom-percentage-label.fsm" target="_blank"&gt;custom-percentage-label.fsm&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;/**Custom Code*/
Object current = ownerobject(c);
Object item = param(1);
int rownumber = param(2); //row number of the schedule/sequence table

// Make sure that source labels exist
current.labels.assert("StoredValues", []).value;
current.labels.assert("Index", 0).value;

if(current.StoredValues.length == 0)
{
&amp;nbsp; &amp;nbsp; // No more stored values -&amp;gt; Create new ones and increment index
&amp;nbsp; &amp;nbsp; double firstValue = Empirical("TestDistribution").get(getstream(current));
&amp;nbsp; &amp;nbsp; double secondValue = Empirical("TestDistribution").get(getstream(current));
&amp;nbsp; &amp;nbsp; while(firstValue + secondValue &amp;gt; 100)
&amp;nbsp; &amp;nbsp; {
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Keep rerolling until sum is not larger than 100
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; secondValue = Empirical("TestDistribution").get(getstream(current));
&amp;nbsp; &amp;nbsp; }
&amp;nbsp; &amp;nbsp; // Update source labels
&amp;nbsp; &amp;nbsp; current.StoredValues = [firstValue, secondValue];
&amp;nbsp; &amp;nbsp; current.Index += 1;
}

// Assign labels to item
item.Value = current.StoredValues.shift();
item.PairID = current.Index;
item.color = Color.byNumber(item.PairID);&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 06:49:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576304#M75442</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2024-10-08T06:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576305#M75443</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P id="isPasted"&gt;Dear Felix,&lt;/P&gt;
 &lt;P&gt;thank you for your ideas in supporting me in my issue.&lt;/P&gt;
 &lt;P&gt;I think I did not put the question correctly.&lt;/P&gt;
 &lt;P&gt;Below is an example of a problem on the screen that needs to be solved.&lt;/P&gt;
 &lt;P&gt;Please take a look at it if you have a chance to help, I would be grateful.&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Thank you in advance!&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1728372022715.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1525501i6CB9B199A1702D3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="1728372022715.png" alt="1728372022715.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 07:25:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576305#M75443</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-08T07:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576306#M75444</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Sorry, but I don't see what the problem in your screenshot is. You have the pass/fail number, can thus calculate the failure rate and use it in the format you show.&lt;/P&gt;&lt;P&gt;It is possible to assign the label in a single expression using &lt;A rel="noopener noreferrer" id="isPasted" href="https://docs.flexsim.com/en/24.2/Reference/CodingInFlexSim/CommandReference/Commands.html#bernoulli" target="_blank"&gt;bernoulli()&lt;/A&gt;. Though that can only return numbers, not strings.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 08:43:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576306#M75444</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2024-10-08T08:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576307#M75445</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Felix, the problem is as follows:&lt;/P&gt;
 &lt;P&gt;When randomly generating repair items, when creating an item using the By Percentage function, 1658,0 items (51,95%) are generated. These items go to the Queue after creation. After reaching Queue I need to create a batch of 6 items to be sent to the next workcenter.&lt;/P&gt;
 &lt;P&gt;When 1658 repair items are generated, the number of batches is not an even number 1658/6 = 276,3 and I still have items on Queue that cannot be formed into a batch.&lt;/P&gt;
 &lt;P&gt;So the goal is to randomly generate a number of repair items close to 51,95% but still even number of items in the batch. For example 1656 pieces. In this case the number of batches will be 1656/6 = 276, and it will give the opportunity to form batches of all items and pass to the next work center.&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Can we use another solution instead of the By Percentage function?&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1728377848072.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1525503iD4476B0FE97C7B1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="1728377848072.png" alt="1728377848072.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 09:15:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576307#M75445</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-08T09:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576308#M75446</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;There are multiple ways to do this, but they will all give an 'imperfect' result because, well, you can't have a random distribution if the quantity of each value is predetermined.&lt;/P&gt;&lt;P&gt;1) You assign values by percentage as normal, but each value only has a limited contingent. Once that has run out, the value is simply not allowed anymore and the rest of the items will get assigned the other value. This will typically lead to a large chain of same type items at the end of the created batch.&lt;/P&gt;&lt;P&gt;2) You first create an array of all possible values that will be assigned and then pick and remove a random value from that array for each item. Here you will end up with slightly fewer long chains of same type items than would be expected. Each time a value is picked it is removed from the array and thus less likely to be picked again for the next item. This effect will become more pronounced toward the end of the batch of created items.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/87138-predetermined-qtys-randomly-distributed.fsm" target="_blank"&gt;predetermined-qtys-randomly-distributed.fsm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The detrimental effect of solution 2 is smaller and usually what I would go for if needed.&lt;/P&gt;&lt;P&gt;However, my preferred solution would be to adjust the model so it will continue to work with partial batches. For example by adding a maximum wait time.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 14:28:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576308#M75446</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2024-10-08T14:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576309#M75447</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P id="isPasted"&gt;Dear Felix,&lt;/P&gt;
 &lt;P&gt;thank you for your help!&lt;/P&gt;
 &lt;P&gt;I will use your ideas!!!&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Regards,&lt;/P&gt;
 &lt;P&gt;Oleksii&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 14:56:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576309#M75447</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-08T14:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576310#M75448</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P id="isPasted"&gt;Felix, I'm sorry to disturb you.&lt;/P&gt;
 &lt;P&gt;How can I modify my model according to your two suggestions if I create a product in process flow.&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Thank you in &lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/87128-model-rejection-rate.fsm" target="_blank"&gt;Model_rejection_rate.fsm&lt;/A&gt;advance for your help!&lt;/P&gt;
 &lt;P&gt;&lt;SPAN id="isPasted" style="color: rgb(51, 51, 51); font-family: "&gt;Oleksii&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 15:31:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576310#M75448</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-08T15:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576311#M75449</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Use the code from the reset trigger (adjusted for the new environment, main replacing "current" with "token" to create the array of possible values on the token.&lt;/P&gt;&lt;P&gt;Then pick values from it like in the creation trigger when assigning the label in the Create Objects activity. (Since the child tokens can read labels on the parent, you can treat the array as being on the label on the child token).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1728403898081.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1525505i5286087395612884/image-size/large?v=v2&amp;amp;px=999" role="button" title="1728403898081.png" alt="1728403898081.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 16:11:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576311#M75449</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2024-10-08T16:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576312#M75450</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P id="isPasted"&gt;Dear Felix!&lt;/P&gt;
 &lt;P&gt;I tried to modify the code you suggested.&lt;/P&gt;
 &lt;P&gt;I inserted it in the places indicated on the screenshot.&lt;/P&gt;
 &lt;P&gt;But I got an error and the required result is on the halfpenny.&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;If you have an opportunity, you can check what I did wrong.&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Thank you in advance!&lt;/P&gt;
 &lt;P&gt;Oleksii&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1728452229238.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1525509i6B20F368CB5615B7/image-size/large?v=v2&amp;amp;px=999" role="button" title="1728452229238.png" alt="1728452229238.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Oct 2024 05:40:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576312#M75450</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-09T05:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576313#M75451</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;You need to keep the header intact, otherwise "token" and other variables are not defined. Only copy the 'functional' part of the code.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1728455263374.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1525510i5B1D041867830757/image-size/large?v=v2&amp;amp;px=999" role="button" title="1728455263374.png" alt="1728455263374.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/87152-model-rejection-rate-1.fsm" target="_blank"&gt;model-rejection-rate_1.fsm&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Oct 2024 06:28:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576313#M75451</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2024-10-09T06:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576314#M75452</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;&lt;SPAN id="isPasted" style="color: rgb(51, 51, 51); font-family: "&gt;Dear Felix!&lt;/SPAN&gt;&lt;/P&gt;
 &lt;P id="isPasted"&gt;Now it makes more sense.&lt;/P&gt;
 &lt;P&gt;But unfortunately only the ‘Good’ value is generated, the ‘Bad’ value is not generated from the array.&lt;/P&gt;
 &lt;P&gt;Sorry to disturb you, but this question is very important for me.&lt;/P&gt;
 &lt;P&gt;Please check it.&lt;/P&gt;
 &lt;P&gt;Thank you in advance!&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Olekii&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Oct 2024 06:56:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576314#M75452</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-09T06:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576315#M75453</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Huh, somehow the code that generates the value array was not toggled as FlexScript. The version below should work.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/87147-model-rejection-rate-2.fsm" target="_blank"&gt;model-rejection-rate_2.fsm&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Oct 2024 08:17:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576315#M75453</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2024-10-09T08:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a label in Flexsim using By Percentage</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576316#M75454</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P id="isPasted"&gt;Dear Felix!&lt;/P&gt;
 &lt;P&gt;Thank you for your time and support!!!&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Everything works!!!&lt;/P&gt;
 &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
 &lt;P&gt;Oleksii&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Oct 2024 10:21:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-create-a-label-in-flexsim-using-by-percentage/m-p/13576316#M75454</guid>
      <dc:creator>Aleksey_KovalenkoLMTB6</dc:creator>
      <dc:date>2024-10-09T10:21:48Z</dc:date>
    </item>
  </channel>
</rss>

