Flat Encoders
FlatRelationEncoder
Bases: EncoderBase['FlatRelationData']
Encode one planning state as packed flat relations.
The output uses one flat entity table and packed relation tensors instead of relation nodes. Optional goals, subgoals, explicit actions, and history payloads can add more relations and helper rows on that same table.
Source code in src/mifrost/encoders/flat.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 | |
engine
property
Expose the native flat relation engine.
config
property
Expose the resolved native config.
relation_dict
property
Expose the relation schema used by the native engine.
relation_names
property
Expose the ordered flat relation names declared by the native engine.
relation_arities
property
Expose the ordered flat relation arities declared by the native engine.
relation_sources
property
Expose the ordered flat relation source labels declared by the native engine.
relation_logical_arities
property
Expose the logical flat relation arities declared by the native engine.
relation_encoded_arities
property
Expose the encoded flat relation arities declared by the native engine.
relation_slot_roles
property
Expose flattened per-relation slot-role ids.
relation_slot_role_offsets
property
Expose offsets into relation_slot_roles for each relation.
slot_role_names
property
Expose the ordered slot-role labels used by flat schema metadata.
__init__(domain, *, backend=None, max_goal_level=0, support_literals=False, include_static=True, export_node_names=True, ignore_zero_arity_relations=True, use_predicate_virtual_nodes=False, include_lgan_edges=False, lgan_anchor_sources=None, target_sources=None, target_symbol_prefix='target:', lgan_tn_edge_pos=DEFAULT_LGAN_TN_EDGE_POS, lgan_nn_edge_pos=DEFAULT_LGAN_NN_EDGE_POS, lgan_rr_edge_pos=DEFAULT_LGAN_RR_EDGE_POS, pack_relation_args_relation_major=False, goal_derivations=None)
Build a flat encoder for state-style workloads.
Parameters follow the flat main state lane.
target_sources answers "what should count as a selectable target?":
action: explicit grounded actions fromactions=...goal: literals from the rootgoals=...inputsubgoal: literals fromsubgoal_layers=...history: literals fromhistory_subgoals=...state: not used here; state targets belong toFlatHorizonEncoder
lgan_anchor_sources is separate. It only creates extra LGAN anchor
rows for goal, subgoal, and history, without turning them into
prediction targets. include_lgan_edges=True emits the packed LGAN
edge tensors.
state targets are not supported on this lane. Use
FlatHorizonEncoder or the flat transition encoders for state
candidates.
Source code in src/mifrost/encoders/flat.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
encode(state, *, goals=None, actions=None, subgoal_layers=None, history_subgoals=None, history_max_steps=None, include_metadata=True, **kwargs)
Encode one state into the native flat carrier.
If goals are omitted, the problem goals from state are used when
needed. actions, subgoal_layers, and history_subgoals are all
optional. Use encode_pyg() when you want a FlatRelationData
wrapper directly.
Source code in src/mifrost/encoders/flat.py
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | |
encode_batch(states, *, goals=None, actions=None, subgoal_layers=None, history_subgoals=None, history_max_steps=None, batch_attrs=None, collate_spec=None, include_metadata=True, **kwargs)
Encode many states with shared or per-state optional payloads.
Batch kwargs follow the same rules as encode: each optional payload
may be shared for all states or given separately per state.
Source code in src/mifrost/encoders/flat.py
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 | |
stream()
Return an append-only stream for flat state encodings.
Source code in src/mifrost/encoders/flat.py
549 550 551 | |
mutable_stream()
Return a mutable stream with append, update, and remove.
Source code in src/mifrost/encoders/flat.py
553 554 555 | |
to_networkx(data, *, graph_index=0, mode='star')
Build a debug graph view for one encoded flat graph.
The returned graph is only for inspection. It expands each relation
instance into a synthetic node and can overlay LGAN edges when they are
present in data.
Source code in src/mifrost/encoders/flat.py
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 | |
draw(data, *, graph_index=0, ax=None, with_labels=True, edge_labels=True, layout=None)
Draw a flat debug graph with matplotlib.
Pass either FlatRelationData or a graph produced by
:meth:to_networkx. LGAN edges are shown as dashed overlays when they
exist.
Source code in src/mifrost/encoders/flat.py
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 | |
FlatHorizonEncoder
Bases: FlatRelationEncoder
Encode a root state plus lookahead candidates as packed flat relations.
Source code in src/mifrost/encoders/flat_horizon.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 | |
engine
property
Expose the native flat horizon engine.
config
property
Expose the resolved native config.
relation_dict
property
Expose the relation schema used by the native engine.
__init__(domain, *, backend=None, assembly=None, transition_mode=None, target_symbol_prefix='target:', parent_relation=DEFAULT_PARENT_RELATION, sibling_relation='_sibling_', cousin_relation='_cousin_', enable_parent_relation=False, enable_sibling_relation=False, enable_cousin_relation=False, root_policy='exclude', max_goal_level=0, support_literals=False, include_static=True, export_node_names=True, ignore_zero_arity_relations=True, ignore_actions=True, use_predicate_virtual_nodes=False, include_lgan_edges=False, lgan_tn_edge_pos=DEFAULT_LGAN_TN_EDGE_POS, lgan_nn_edge_pos=DEFAULT_LGAN_NN_EDGE_POS, lgan_rr_edge_pos=DEFAULT_LGAN_RR_EDGE_POS, pack_relation_args_relation_major=False, goal_derivations=None)
Create a flat horizon encoder.
This lane reads a root state plus a TransitionDAG and creates
candidate state rows.
root_policy controls how the root is treated:
include: root is encoded and is also a targetencode_only: root is encoded, but not a targetexclude: root is not a target, and root facts stay base relations
When include_lgan_edges=True, LGAN anchors follow the target rows.
There is no lgan_anchor_sources switch here.
assembly accepts a native SemanticFlatAssemblyComponents carrier.
It is consumed exactly once by the Pymimir adapter before compilation;
the PyTyr backend does not yet expose this adapter bridge.
Source code in src/mifrost/encoders/flat_horizon.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | |
encode(root, dag=None, *, goals=None, actions=None, subgoal_layers=None, history_subgoals=None, history_max_steps=None, include_metadata=True, **kwargs)
Encode one root state and optional lookahead DAG.
If dag is omitted, a one-node DAG for the root is used. actions and
history_subgoals are accepted for API consistency but non-empty
payloads are rejected on this lane.
Source code in src/mifrost/encoders/flat_horizon.py
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | |
encode_batch(roots, dags=None, *, goals=None, actions=None, subgoal_layers=None, history_subgoals=None, history_max_steps=None, batch_attrs=None, collate_spec=None, include_metadata=True, **kwargs)
Encode many root/DAG inputs into one flat batch.
Source code in src/mifrost/encoders/flat_horizon.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | |
stream()
Return an append-only stream for root/DAG horizon inputs.
Source code in src/mifrost/encoders/flat_horizon.py
458 459 460 | |
mutable_stream()
Return a mutable stream with append, update, and remove.
Source code in src/mifrost/encoders/flat_horizon.py
462 463 464 465 466 | |
FlatTransitionEncoder
Bases: _FlatTransitionEncoderBase
Encode full current-to-successor structure on the flat carrier.
Source code in src/mifrost/encoders/flat_transition.py
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | |
__init__(domain, **kwargs)
Create a full flat transition encoder.
LGAN, when enabled, uses successor-state candidate rows from the underlying flat horizon lane.
Source code in src/mifrost/encoders/flat_transition.py
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
stream()
Return a mutable stream for full flat transitions.
Source code in src/mifrost/encoders/flat_transition.py
301 302 303 | |
FlatTransitionEffectsEncoder
Bases: _FlatTransitionEncoderBase
Encode only changed successor structure on the flat carrier.
Source code in src/mifrost/encoders/flat_transition.py
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | |
__init__(domain, **kwargs)
Create a delta/effects flat transition encoder.
Source code in src/mifrost/encoders/flat_transition.py
309 310 311 312 313 314 315 316 317 318 319 320 | |
stream()
Return a mutable stream for flat delta/effects transitions.
Source code in src/mifrost/encoders/flat_transition.py
322 323 324 | |
FlatRelationData
Bases: Data
Packed flat relation carrier with PyG-compatible batching behavior.
Source code in src/mifrost/encoders/flat_data.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 | |
schema
cached
property
Return the normalized flat relation schema for this batch.
flattened_relations
property
Return the flat relations grouped by relation name.
num_graphs
property
Return how many graphs are stored in this flat carrier.
relation_instance_counts_total()
Return total instance counts per relation across the whole batch.
Source code in src/mifrost/encoders/flat_data.py
331 332 333 334 335 336 337 338 339 | |
relation_slot_offsets(graph_index=None)
Return slot offsets into relation_args for one graph or the whole batch.
Source code in src/mifrost/encoders/flat_data.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | |
flattened_relations_view(graph_index=None)
Slice relation_args into per-relation matrices.
With graph_index=None, the result covers the whole batch. With a graph
index, the result is limited to one graph.
Source code in src/mifrost/encoders/flat_data.py
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | |
graph_node_names(graph_index=0)
Return entity-row names for one graph.
Source code in src/mifrost/encoders/flat_data.py
456 457 458 459 460 461 462 463 464 | |
graph_object_names(graph_index=0)
Return object names for one graph.
Source code in src/mifrost/encoders/flat_data.py
466 467 468 469 470 471 472 473 | |
graph_object_indices(graph_index=0)
Return global entity rows that correspond to objects.
Source code in src/mifrost/encoders/flat_data.py
475 476 477 478 479 480 481 | |
graph_history_entity_indices(graph_index=0)
Return global entity rows used as history carriers.
Source code in src/mifrost/encoders/flat_data.py
483 484 485 486 487 488 489 | |
graph_history_entity_dt(graph_index=0)
Return the dt values for history carrier rows.
Source code in src/mifrost/encoders/flat_data.py
491 492 493 494 495 496 497 | |
graph_history_entity_names(graph_index=0)
Return names for the history carrier rows of one graph.
Source code in src/mifrost/encoders/flat_data.py
499 500 501 502 503 504 505 506 507 508 509 | |
graph_target_entity_indices(graph_index=0, group=None)
Return candidate-carrier rows for one graph.
Use group to limit the result to one source, such as goal,
subgoal, action, or history.
Source code in src/mifrost/encoders/flat_data.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 | |
graph_target_entity_group_ids(graph_index=0)
Return source-group ids for target-entity rows.
Source code in src/mifrost/encoders/flat_data.py
532 533 534 535 536 537 538 | |
graph_target_entity_names(graph_index=0, group=None)
Return names for target-entity rows, optionally filtered by group.
Source code in src/mifrost/encoders/flat_data.py
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 | |
graph_target_positions(graph_index=0)
Return entity-row positions for prediction targets.
Source code in src/mifrost/encoders/flat_data.py
556 557 558 559 560 561 562 | |
graph_target_indices(graph_index=0)
Return per-graph target indices in encounter order.
Source code in src/mifrost/encoders/flat_data.py
564 565 566 567 568 569 570 | |
graph_target_candidate_ids(graph_index=0)
Return stable candidate ids for prediction targets.
Source code in src/mifrost/encoders/flat_data.py
572 573 574 575 576 577 578 | |
graph_target_depths(graph_index=0)
Return target depths when the encoder emitted them.
Source code in src/mifrost/encoders/flat_data.py
580 581 582 583 584 585 586 | |
graph_target_group_ids(graph_index=0)
Return source-group ids for prediction targets.
Source code in src/mifrost/encoders/flat_data.py
588 589 590 591 592 593 594 | |
graph_target_names(graph_index=0)
Return display names for prediction targets.
Source code in src/mifrost/encoders/flat_data.py
596 597 598 599 600 601 602 603 | |
graph_relation_instance_range(graph_index=0)
Return the global relation-instance index range for one graph.
Source code in src/mifrost/encoders/flat_data.py
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
graph_lgan_tn_edges(graph_index=0)
Return packed TN LGAN edges for one graph.
Source code in src/mifrost/encoders/flat_data.py
631 632 633 634 635 636 637 638 | |
graph_lgan_nn_edges(graph_index=0)
Return packed NN LGAN edges for one graph.
Source code in src/mifrost/encoders/flat_data.py
640 641 642 643 644 645 646 647 | |
graph_lgan_rr_edges(graph_index=0)
Return packed RR LGAN edges for one graph.
Source code in src/mifrost/encoders/flat_data.py
649 650 651 652 653 654 655 656 | |
graph_node_range(graph_index=0)
Return the global entity-row range for one graph.
Source code in src/mifrost/encoders/flat_data.py
658 659 660 661 662 663 664 665 666 667 668 669 670 | |
graph_entity_role_ids(graph_index=0)
Return per-entity role ids for one graph.
Source code in src/mifrost/encoders/flat_data.py
672 673 674 675 676 677 678 | |
graph_entity_roles(graph_index=0)
Return decoded per-entity role labels for one graph.
Source code in src/mifrost/encoders/flat_data.py
680 681 682 683 684 685 686 687 688 689 690 691 | |